home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / asprint.cpp < prev    next >
C/C++ Source or Header  |  1999-03-14  |  4KB  |  124 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Source Code File Name: asprint.cpp
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer  
  8. // File Creation Date: 09/18/1997  
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ------------- Program Description and Details ------------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. These classes and functions are used to print data to ASCII
  32. text files and format data for various print functions.
  33. */
  34. // ----------------------------------------------------------- // 
  35. #include "asprint.h"
  36. #include <stdio.h>
  37. #include <string.h>
  38.  
  39. void ASPrint(const char *s, ostream &stream, int offset, int pos,
  40.          const char pad)
  41. // Prints a null terminated string to the stream starting at the
  42. // specified position or the current position if the pos variable
  43. // equals zero. The offset variable specifies the number of character
  44. // to pad after the text is printed.
  45. {
  46.   int i = 0;
  47.   int len = strlen(s);
  48.   char *buf = new char[len+1];
  49.   buf[len] = '\0';
  50.   strcpy(buf, s);
  51.   if(len > offset) len = offset-1; // Subtract 1 to avoid overlaps
  52.   if(pos) for(i = 0; i < pos; i++) stream << pad; // Position the text
  53.   for(i = 0; i < len; i++) stream << buf[i];
  54.   if(len < offset) {
  55.     offset = offset - len;
  56.     for(i = 0; i < offset; i++) stream << pad;
  57.   }
  58.   delete[] buf;
  59. }
  60.  
  61. void ASPrint(const char *s, const char filter, ostream &stream, int offset,
  62.          int pos, const char pad)
  63. // Prints a null terminated string to the stream starting and filters
  64. // any unwanted characters specifed by the filter variable.
  65. {
  66.   int i = 0;
  67.   int len = strlen(s);
  68.   char *buf = new char[len+1];
  69.   buf[len] = '\0';
  70.   strcpy(buf, s);
  71.   if(len > offset) len = offset-1; // Subtract 1 to avoid overlaps
  72.   if(pos) for(i = 0; i < pos; i++) stream << pad; // Position the text
  73.   for(i = 0; i < len; i++) {
  74.     // Filter all unwanted characters
  75.     if(buf[i] != filter) stream << buf[i];
  76.   }
  77.   if(len < offset) {
  78.     offset = offset - len;
  79.     for(i = 0; i < offset; i++) stream << pad;
  80.   }
  81.   delete[] buf;
  82. }
  83.  
  84. void ASPrint(const char c, ostream &stream, int offset, int pos,
  85.          const char pad)
  86. // Prints a single character to the stream starting.
  87. {
  88.   char s[1];
  89.   s[0] = c;    // Copy char into a string buffer
  90.   s[1] = '\0'; // Null terminate the string
  91.   ASPrint(s, stream, offset, pos, pad);
  92. }
  93.   
  94. void ASPrint(int val, ostream &stream, int offset, int pos, const char pad)
  95. {
  96.   char *buf = new char[offset+1];
  97.   buf[offset] = '\0';
  98.   sprintf(buf, "%d", val);
  99.   ASPrint(buf, stream, offset, pos, pad);
  100.   delete[] buf; 
  101. }
  102.  
  103. void ASPrint(long val, ostream &stream, int offset, int pos, const char pad)
  104. {
  105.   char *buf = new char[offset+1];
  106.   buf[offset] = '\0';
  107.   sprintf(buf, "%d", val);
  108.   ASPrint(buf, stream, offset, pos, pad);
  109.   delete[] buf; 
  110. }
  111.  
  112. void ASPrint(double val, ostream &stream, int offset, int pos, const char pad)
  113. {
  114.   char *buf = new char[offset+1];
  115.   buf[offset] = '\0';
  116.   sprintf(buf, "%g", val);
  117.   ASPrint(buf, stream, offset, pos, pad);
  118.   delete[] buf; 
  119. }
  120. // ----------------------------------------------------------- //
  121. // ------------------------------- //
  122. // --------- End of File --------- //
  123. // ------------------------------- //
  124.